home *** CD-ROM | disk | FTP | other *** search
-
- var theobject = null; //This gets a value as soon as a resize start
- var percentObj = null;
-
- function percent()
- {
- this.percent;
- }
-
- function sliderObject() {
- this.el; //pointer to the object
- this.type; //x-scroller eller y-scroller
- this.grabx; //Some useful values
- this.graby;
- this.width;
- this.height;
- this.left;
- this.top;
- this.parentWidth;
- this.parentHeight;
- this.scrollPersent;
- }
-
- function initScroller()
- {
- percentObj = new percent();
- percentObj.percent = 0;
-
- posiScroller();
-
- }
-
-
-
- function posiScroller()
- {
- var forhold;
- forhold = document.all("viewport").offsetHeight / document.all("visiblecontent").offsetHeight;
-
- if (forhold>=1) {document.all("handle").style.visibility = "hidden";};
-
- if (forhold<1) {
-
- temp = document.all("viewport").offsetHeight * forhold;
- if ( temp > 45 ) {document.all("handle").style.pixelHeight = temp;}
- else {document.all("handle").style.pixelHeight = 45;}
-
- document.all("handle").style.visibility = "visible";
-
- }
-
- moveObjToPersent(percentObj.percent);
-
- var pH;
- var oH;
- var pT;
- pH = document.all("handle").style.pixelHeight;
- pT = document.all("handle").style.pixelTop;
- oH = document.all("viewport").offsetHeight;
- if ((pH + pT)>oH)
- {
- document.all("handle").style.pixelTop = oH - pH;
- }
- }
-
- function setSlider()
- {
- per = document.all("viewport").scrollTop / (document.all("visiblecontent").offsetHeight - document.all("viewport").offsetHeight)
- dis = document.all('viewport').style.pixelHeight - document.all('handle').style.pixelHeight;
- pos = dis*per;
- document.all('handle').style.top = pos;
-
- }
-
-
- function sliderToTop()
- {
- document.all("handle").style.pixelTop = 0;
- }
-
-
- function scrollDown() {
- var el = window.event.srcElement;
-
- if(el.className == "scrollHandle") {
- el = document.all('handle');
- theobject = new sliderObject(); //This is a global reference to the current dragging object
-
- theobject.el = el;
- theobject.type = el.getAttribute("type")
- theobject.grabx = window.event.clientX; //X relativ til hele vinduet
- theobject.graby = window.event.clientY; //Y relativ til hele vinduet
- theobject.width = el.style.pixelWidth; //Width af scrollbaren
- theobject.height = el.style.pixelHeight; //Height af scrollbaren
- theobject.left = el.style.pixelLeft;
- theobject.top = el.style.pixelTop;
- theobject.parentWidth = el.parentElement.clientWidth;
- theobject.parentHeight = el.parentElement.clientHeight;
-
- theobject.el.style.backgroundColor = "#a0a0a0";
- window.event.returnValue = false;
- window.event.cancelBubble = true;
- }
- else {
- theobject = null;
- }
- }
-
- function scrollUp() {
- if (theobject) {
- theobject.el.style.backgroundColor = "#c0c0c0";
- theobject = null;
- }
- }
-
- function scrollMove() {
- var el, xPos, yPos, str;
- el = window.event.srcElement;
- if (window.event.button == 0) {scrollUp();}
- if (el.className == "scrollZoomHandle" && theobject == null) //Over scroller men uden knap trykket
- { }
-
- if (theobject != null) //Over scroller med knap trykket
- {
-
- //alert(theobject.el.id);
- //alert(theobject.el.style.position);
- //theobject.el.style.position = "relative";
- temp = theobject.el.parentElement.clientHeight - theobject.el.clientHeight;
- var posY=event.clientY - theobject.graby + theobject.top;
- if ((posY>=0) && (posY<temp))
- {
- theobject.el.style.top = posY;
- }
- else
- {
- if (posY<0) {theobject.el.style.top = 0;}
- if (posY>temp) {theobject.el.style.top = temp;}
-
- }
- handleFakeEventY(theobject.el);
- }
-
- window.event.returnValue = false;
- window.event.cancelBubble = true;
- }
-
- function handleFakeEventY(el) {
-
- temp = theobject.el.parentElement.clientHeight - theobject.el.clientHeight;
- percentObj.percent = (el.style.pixelTop/temp);
- moveObjToPersent(percentObj.percent);
-
- }
-
- function moveObjToPersent(per)
- {
-
- document.all("viewport").scrollTop = parseInt((document.all("visiblecontent").offsetHeight - document.all("viewport").offsetHeight) * per);
-
-
-
-
- }
-
-